home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 301-325 / 316 / life / makefile < prev    next >
Makefile  |  1995-03-14  |  372b  |  18 lines

  1. life: life.o blit.o readin.o life68.o
  2.     ln -t -o life life.o blit.o readin.o life68.o -lc
  3.  
  4. structures.b: structures.h
  5.     cc -b -a +hstructures.b structures.h
  6.  
  7. blit.o: blit.c structures.b
  8.     cc -b +istructures.b blit.c
  9.  
  10. life.o: life.c structures.b
  11.     cc -b +istructures.b life.c
  12.  
  13. readin.o: readin.c structures.b
  14.     cc -b +istructures.b readin.c
  15.  
  16. life68.o: life68.asm
  17.     as life68.asm
  18.